@font-face {
    font-family: "Roboto Bold";
    src: url('../assets/Roboto-Bold.ttf');
}

@font-face {
    font-family: "Polly";
    src: url('/web/20240404214747im_/https://Blitzed.com/assets/fonts/PollyRounded-Regular.otf');
}

@font-face {
    font-family: "Polly Light";
    src: url('/web/20240404214747im_/https://Blitzed.com/assets/fonts/PollyRounded-Light.otf');
}

body, html {
    scroll-behavior: smooth;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    color: floralwhite;
    background-color: rgb(71, 6, 6);
}

.body-background {
    background-image: url("../assets/miomi-full-bg.png");

    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: scroll;
}

/*Alert*/
#alert-area {
    backdrop-filter: blur(10px);
    background-color: rgba(61, 94, 189, 0.3);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);

    font-size: 18px;

    border: transparent;
    color: white;
}

/*Arrow*/
.arrow {
    position: absolute;
    left: calc(50% - 20px);

    width: 40px;
    height: 40px;
    border-right: 2px rgba(237, 74, 147, 0.7) solid;
    border-bottom: 2px rgba(255, 255, 255, 0.7) solid;

    transform: rotate(45deg);
    animation: arrow 3s ease-out -3s infinite alternate forwards;

    bottom: 100px;
}

@keyframes arrow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(25px) rotate(45deg);
    }
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 1.1s ease-in-out;
}

/*### INPUT ###*/
.custom-input {
    background: rgba(0, 0, 0, .4) !important;
    border-color: transparent !important;
    color: white !important;
}

.custom-input:read-only {
    color: rgba(255, 255, 255, .5) !important;
}

/*### END INPUT ###*/
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Bold", sans-serif;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 30px;
}

p {
    font-family: "Roboto", sans-serif;
}

.text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 16px;
    line-height: 1.7;
}
.text-red {
    color: var(--primary-colored-text, #E12727) !important;
}
.dark-gray {
    color: #e62c2c56 !important;
}
/*### Section ###*/
section {
    padding: 6rem;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h3 {
    font-size: 33px;
    font-weight: 300;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.section-divider .divider-line {
    width: 55px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-colored-text));
}

.section-divider .divider-line:last-child {
    background: linear-gradient(90deg, var(--primary-colored-text), transparent);
}

.section-divider .divider-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(237, 74, 147, 0.6));
}

/*### END Section ###*/

/*### Navbar ###*/
.navbar {
    position: relative;
    z-index: 1;

    background-color: rgba(74, 15, 54, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 0 0 1px rgba(237, 74, 147, 0.08);

    font-weight: 300;
    overflow: hidden;
}

/* 🔥 Add a background GIF to the navbar */
.navbar::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;

    background: url('./assets/black.gif') center center / cover no-repeat;
    opacity: 0.2; /* Adjust to control strength */
    z-index: 0;
    pointer-events: none;
}
.navbar-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding-left: 8px;
  top: -3px;
}

.navbar-brand span {
  font-family: "Polly Light", sans-serif;
  font-size: 24px;
  letter-spacing: 7px;
  font-weight: bold;
  color: white;
  position: relative;
  z-index: 1;
  line-height: 1;
}

/* 🔥 Overlay hidden by default */
.navbar-brand span::after {
  content: "";
  position: absolute;
  top: -5px; /* adjust if needed */
  left: -5px;
  width: 120%;
  height: 130%;
  background: url('https://i.pinimg.com/originals/c2/30/fc/c230fc4da3b15028c372561fcc19a969.gif') center center / cover no-repeat;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

/* When class is active, show the gif */
.navbar-brand span.gif-active::after {
  opacity: 0.5;
}


.navbar-brand img {
    height: 22px;
    width: auto;
    position: relative;
    top: 2px;
    left: -4px;
}

.navbar-brand span {
    font-family: "Polly Light", sans-serif;
    letter-spacing: 7px;
    font-size: 20px;
    color: white;
}

.nav-link {
    font-size: 16px;
    color: white;
    text-align: center;

    border: none;
    box-shadow: none;
}

.nav-link:hover,
.nav-link:focus {
    color: inherit;
    text-decoration: none;
    transition: all 1.1s ease-in-out;
}

.nav-link:hover {
    color: lightgrey;
}

.nav-purchase {
    background-image: linear-gradient(135deg, rgba(237, 74, 147, 0.35) 0%, rgba(237, 74, 147, 0.15) 100%);
    border: 1px solid rgba(237, 74, 147, 0.35);

    border-radius: 50px;
    transform: scale(0.9);
}

.nav-purchase .button {
    color: inherit;
}

/*Nav animation on scroll*/
.nav-menu {
    padding: 15px 0;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.nav-menu.is-scrolling {
    padding: 0;
}

.nav-menu.nav-hidden {
    transform: translateY(-140%) scale(0.85);
    opacity: 0;
    pointer-events: none;
}

/*END Nav animation on scroll*/
/*### END Navbar ###*/

/*Home*/
#home {
    backdrop-filter: blur(10px);
}

.modal-backdrop {
    background-color: transparent;
}

#home h1 {
    font-family: "Polly Light", sans-serif;
    font-size: 45px;
    /*color: rgba(255, 255, 255, .8);*/
}

#home h2 {
    font-family: "Polly Light", sans-serif;
    font-size: 20px;
    letter-spacing: -1px;
    /*color: rgba(255, 255, 255, .7);*/
}
.font {
    font-family: "Polly Light", sans-serif;
    font-size: 75px;
    display: inline-block;
    background: linear-gradient(105deg, #ffffff 49.5%, var(--primary-colored-text) 50.5%);
    background-size: 100% 100%;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
      text-shadow: 0 0 13px rgba(237, 74, 147, 0.7);

}

.imgs {
  max-width: 100%;
  height: auto;
}
.fontw {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    display: inline-block;
    background: linear-gradient(105deg, #ffffff 49.5%, var(--primary-colored-text) 50.5%);
    background-size: 100% 100%;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
      text-shadow: 0 0 13px rgba(237, 74, 147, 0.7);

}

.fontindepth {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    display: inline-block;
    font-size: 33px;
      text-shadow: 0 0 13px rgba(237, 74, 147, 0.7);

    background: linear-gradient(105deg, #ffffff 49.5%, var(--primary-colored-text) 50.5%);
    background-size: 100% 100%;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.video_wrapper {
    width: 120%;
    height: auto;
    position: relative;
        border: 2px solid var(--primary-color-bright);
    box-shadow: 0 0 20px rgba(237, 74, 147, 0.4);
    border-radius: 10px;
}

#showcase_video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 10px 10px 10px rgba(0, 0, 0, .5) !important;
}

/*END Home*/

/*Features*/
#features {
    position: relative;
    backdrop-filter: blur(10px);
}

#features::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(11, 3, 8, 1) 0%,
            rgba(11, 3, 8, 0.4) 18%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
}

#features > .container {
    position: relative;
    z-index: 2;
}

#feature-rows .row {
    padding-top: 100px;
    border-radius: 12px !important;
}

#feature-rows img {
    width: 90%;
    height: auto;

    border: 2px solid var(--primary-color-bright);
    border-radius: 12px;
    backdrop-filter: blur(15px) brightness(80%);
    box-shadow: 0 0 20px rgba(237, 74, 147, 0.4), 15px 15px 15px rgba(0, 0, 0, .5) !important;
}

@keyframes float {
    0% {
        /*box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);*/
        transform: translatey(0px);
    }
    50% {
        /*box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);*/
        transform: translatey(-20px);
    }
    100% {
        /*box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);*/
        transform: translatey(0px);
    }
}

.image-stack {
    position: relative;
    display: block;
}

.top-image {
    right: 8%;
    top: 15%;
    position: absolute;
    margin-top: -25px;
    margin-left: -25px;
}

/* Card */
.card {
    background: rgba(40, 8, 28, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(237, 74, 147, 0.25);
    border-radius: 20px;
    transition: all 1.1s ease-in-out;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(237, 74, 147, 0.1);
    -webkit-box-shadow: 0 0 20px 0 rgba(237, 74, 147, 0.1);
    -moz-box-shadow: 0 0 20px 0 rgba(237, 74, 147, 0.1);
}

.card.feature:hover {
    transform: translateY(4px) scale(1.02);
    -moz-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
    box-shadow: none;
}

.card-title {
    text-align: center;
    transition: all 1100ms ease-in-out;
    color: white !important;
      text-shadow: 0 0 19px rgba(237, 74, 147, 0.6);

}

.icon {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.card-text {
    font-size: 14px;
    font-weight: 300;
    transition: all 1200ms ease-in-out;
}

.card .media-body::after {
    content: '';
    display: block;
    width: 44px;
    height: 2px;
    margin: 26px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent 10%, var(--primary-colored-text) 55%, transparent 90%);
}

.col-12:nth-child(1) .card .media-body::after {
    margin-right: auto;
    margin-left: calc(50% - 30px);
    background: linear-gradient(90deg, transparent 0%, var(--primary-colored-text) 65%, transparent 100%);
}

.col-12:nth-child(2) .card .media-body::after {
    margin-left: auto;
    margin-right: calc(50% - 26px);
    background: linear-gradient(90deg, transparent 20%, var(--primary-colored-text) 45%, transparent 85%);
}

.col-12:nth-child(3) .card .media-body::after {
    width: 48px;
    background: linear-gradient(90deg, transparent 5%, var(--primary-colored-text) 60%, transparent 95%);
}

.card.feature i {
    transform: scale(1);
    transition: all 1100ms ease-in-out;
}

.card.feature:hover i {
    transform: scale(1.1);
}

.card.feature:hover h4 {
    transform: translateY(2px);
}

.card.feature:hover p {
    transform: scale(1.02);
}

iframe {
    clip-path: inset(0% 0% 0% 0% round 15px);
}

/*### END Features ###*/


/*### Button ###*/
.button {
    display: inline-block;
    margin: 15px 0;
    min-height: 50px;
    padding: 13px 26px;
    font-size: 16px !important;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    position: relative;
    z-index: 1;

    color: white;
    background-color: var(--primary-colored-text);
    background-image: none;
    border: none;

    box-shadow:
        0 0 6px rgba(237, 74, 147, 0.3),
        0 0 12px rgba(237, 74, 147, 0.15);
    transition: all 1.0s ease-in-out;
}

.button:hover {
    background-color: var(--primary-color-bright);
    box-shadow:
        0 0 16px rgba(255, 111, 196, 0.4),
        0 0 10px rgba(255, 111, 196, 0.25);
    transform: scale(1.04);
}

@keyframes glowShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.button::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 30px;
    background: rgba(237, 74, 147, 0.35);
    filter: blur(6px);
    opacity: 0.25;
    z-index: -1;
    transition: opacity 1.0s ease-in-out;
}
.button-info {
    display: inline-block;
    margin: 15px 0;
    min-height: 50px;
    padding: 13px 26px;
    font-size: 16px !important;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    position: relative;
    z-index: 1;

    color: white;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(3px);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.07), 0 0 2px rgba(255, 255, 255, 0.15);
    transition: all 1.05s ease-in-out;
}

.button-info:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.08),
        0 0 4px rgba(255, 255, 255, 0.1);
    transform: scale(1.03);
}

.button:hover {
    animation: gradientRotate 2s infinite;
}

.button:hover::before {
    opacity: 1;
    animation: gradientRotate 2s infinite;
}

.button:active {
    color: #afb0bd;
}

.button:focus::before {
    opacity: 1;
}

/*### END Button ###*/

/*### PRICING ###*/
#pricing {
    backdrop-filter: blur(10px);
}

.single_price_plan {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    margin-bottom: 50px;
    background-color: rgba(12, 26, 66, .7);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    padding: 3rem 4rem;
    transition-duration: 1150ms;
    transition-timing-function: ease-in-out;
}

.single_price_plan:hover {
    transform: scale(0.99);
}

.single_price_plan .title {
    text-transform: capitalize;
    margin-bottom: 1.3rem;
}

.single_price_plan .title span {
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #48e17f;
    background-image: linear-gradient(160deg, #48e17f 0%, #39b9b5 100%);

    display: inline-block;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.single_price_plan .title h3 {
    font-size: 1.25rem;
}

.single_price_plan .title .line {
    width: 80px;
    height: 4px;
    border-radius: 10px;
    background-color: #3d70f3;
}

.single_price_plan .price {
    margin-bottom: 1.5rem;
}

.single_price_plan .price h4 {
    position: relative;
    z-index: 1;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 0;
    color: #3f43fd;
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 0 #fff, 0 0 15px #228dff;
}

.single_price_plan .description {
    position: relative;
    margin-bottom: 1.5rem;
}

.single_price_plan .description p {
    line-height: 16px;
    margin: 0;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.single_price_plan .description p i {
    color: #2ecc71;
    margin-right: 0.5rem;
}

/*### END PRICING ###*/

.custom-separator {
    width: 6rem;
    height: 4px;
    border-radius: 1rem;
}

/* Download */
#download {
    backdrop-filter: blur(10px);
}

.win-gradient, .win-gradient::before {
    background-image: linear-gradient(45deg, #00abef 0%, #1c6a9b 50%);
}

.lin-gradient, .lin-gradient::before {
    background-image: linear-gradient(45deg, #e1a259 0%, #f84ce9 50%);
}

.osx-gradient, .osx-gradient::before {
    background-image: linear-gradient(45deg, #9754ce 0%, #277ab6 50%);
}

/* End Download */

/*CHANGELOG*/
#changelog {
    backdrop-filter: blur(10px) brightness(130%);
}

/*TABLE*/
table {
    border-spacing: 0;
    border-collapse: collapse;
}

/*TABLE*/
td, th {
    padding: 0;
}

/*LIST*/
ul, ol {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

/*Timeline*/
.timeline::before {
    content: "";
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.3) 250px, rgba(255, 255, 255, 0.3) calc(100% - 250px), rgba(255, 255, 255, 0.0) 100%);
    width: 3px;
    position: absolute;
    top: 100px;
    bottom: 0;
    left: calc((65px / 2) + 16px);
    z-index: -1;
}

.left-gap {
    margin-left: 75px;
}

#row-style {
    background: rgba(4, 9, 42, 0.5);
    backdrop-filter: blur(30px);
    border-radius: 5px;
    padding: 8px;

    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.release-version-badge {
    width: 110px;
    text-align: center;

    background: #6b3ec5;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);

    font-family: "Roboto", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.release-note h3 {
    width: 110px;
    margin-top: -10px;
    margin-bottom: 25px;
    font-size: 15px;

    text-align: center;

    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);

    border-radius: 5px;
    backdrop-filter: blur(6px);
}

.change-badge {
    display: inline;
    flex: 0 0 70px;
    border-radius: 3px;
    margin-right: 8px;
    padding: 2px 5px;
    text-align: center;

    height: 20px;

    font-family: "Roboto", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;

    color: #1a1e21;
}

.change-badge-new, .change-badge-new {
    background-color: #28c960;
}

.change-badge-improved {
    background-color: #2280ea;
}

.change-badge-fixed {
    background-color: #f5af00;
}

.change-badge-removed {
    background-color: #e54756;
}

.change-description {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #dedcdc;
    letter-spacing: 1px;
    margin-left: 3px;
}

/*END CHANGELOG*/

/*Footer*/
footer {
    background: rgba(34, 1, 1, 0.5);
    backdrop-filter: blur(80px);
}
/*
     FILE ARCHIVED ON 21:47:47 Apr 04, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 12:16:56 Nov 18, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.726
  exclusion.robots: 0.026
  exclusion.robots.policy: 0.012
  esindex: 0.013
  cdx.remote: 14.719
  LoadShardBlock: 130.843 (3)
  PetaboxLoader3.datanode: 308.272 (4)
  load_resource: 268.649
  PetaboxLoader3.resolve: 52.304
*/